home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / include / mpw / grp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  125 b   |  11 lines

  1. #pragma once
  2.  
  3. #include "sys/types.h"
  4.  
  5. struct group {
  6.   char *gr_name;
  7.   gid_t gr_gid;
  8.   char *gr_passwd;
  9.   char **gr_mem;
  10. };
  11.